CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - Huffman tree

搜索资源列表

  1. huffmam_decoding

    0下载:
  2. the decoding of Huffman codes is shown. For the decoding the coding tree has to be constructed using the information which has to be transmitted as well. Following that the input is read bitwise and for each 0 a left turn is taken and for each one
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:2092
    • 提供者:hazhiriq200
  1. C_Programming_classic_example_of_Huffman_code_tree

    0下载:
  2. C++ 编程开发夫曼树例子经典代码C + + Programming classic example of Huffman code tr-C++ Programming classic example of Huffman code tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:4438
    • 提供者:nmm
  1. suanfa

    1下载:
  2. 数据结构基本算法演示程序实现: 1、实现KMP模式匹配算法、哈夫曼编码算法、由遍历序列恢复二叉树、Prim算法、Kruskal算法、Floyd算法、Dijkstra算法、拓扑排序、关键路径算法、二叉排序树生成算法(含平衡化)、哈希表生成及哈希查找算法、希尔排序、快速排序、堆排序、归并排序、基数排序。(四则表达式计算、矩阵运算、有向图的强连通分量求解) 2、算法中的链表结构和数组结构的基本操作要求单独函数实现(同组内算法要求共享使用)。 要求数据结构基本算法演示程序具有菜单选择,算法要
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:20855
    • 提供者:dark
  1. a

    1下载:
  2. 这是一份数据结构课程设计报告,题目是哈夫曼树的编码及其应用。其中包含详细设计模块,源代码,程序运行结果截图等等。-This is a data structure course design report entitled Huffman coding tree and its application. Which contains the detailed design of the module, source code, screenshots, and so run the result
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:140836
    • 提供者:李捷
  1. 06treesbinarytrees

    0下载:
  2. 树和二叉树用途非常广发,有名的哈夫曼算法就可以用来制作压缩软件,大家好好好学习-Binary tree and uses a very widely distributed, well-known Huffman algorithm can be used to create compression software, we take a good learning
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:395394
    • 提供者:vans
  1. Huffman_System

    0下载:
  2. 本代码完全实现Huffman编码解码,由本人自主编写,是初学Huffman的好材料,其中可根据权重绘制树图-The full realization of the Huffman code encoding and decoding, self-written by me, a good material to learn Huffman, which may draw the tree under the weight
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:232719
    • 提供者:龙龙
  1. erchashu

    0下载:
  2. C作业:二叉树 先序建立,中序线索化,层序遍历,哈夫曼编码-C operation: binary tree preorder established in order cued, sequence traversal, Huffman coding
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:37559
    • 提供者:ns
  1. Data_Structures_Trees

    0下载:
  2. The folder contains various tree traversal programs, BFS,DFS,Huffman algorithm,and various binary tree programs.
  3. 所属分类:Data structs

  1. Graph

    0下载:
  2. 数据结构中图的操作,包括有向图,无向图,加权图,无加权图.还包括生成最小生成树,以及霍夫曼编码.-Data structure in operation, including a directed graph, undirected graph, weighted graph, non-weighted graph. Also generate minimum spanning tree, and Huffman coding.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:278069
    • 提供者:fengwuyu
  1. erchashu

    0下载:
  2. 用哈夫曼编码,实现最优二叉树。用VC编程,实现基本功能。-With Huffman coding, optimal binary tree. With VC programming, basic functions.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:447554
    • 提供者:文明
  1. huffman1

    0下载:
  2. 数据结构:利用C++实现对树进行哈夫曼编码,代码易懂。-Data Structures: Using C++ implementation of the Huffman code tree, the code easy to understand.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1249
    • 提供者:liuyupei
  1. tanxinsuanfa

    0下载:
  2. 贪心算法又被称为登山法,根本思想是逐步获得最优解,使用贪心算法选取那些最可能实现结果的解来考虑,即以逐步的最优达到最终的全局最优。哈夫曼算法是构造最优前缀码的贪心算法,以自底向上的方式构造表示最优前缀码的二叉树T,在算法中编码字符集中的每一字符c的频率为f(c),以f为键值的优先队列Q用在贪心选择时,有效地确定算法当前要合并的两棵具有最小频率的树,一旦两棵具有最小频率的树合并后,产生一棵新的树,其频率为合并的两棵树的频率之和,并将新树插入优先队列Q。-Greedy algorithm is a
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1792
    • 提供者:ss
  1. haffuman-

    0下载:
  2. 统计一篇文章中的26字母出现的次数,然后实现赫夫曼树的编码-Article statistics the number of occurrences of 26 letters, and then implement the Huffman coding tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1436
    • 提供者:sunying
  1. HuffmanCoding

    0下载:
  2. 实现赫夫曼编码功能。利用数据结构典型算法,c语言构造最优二叉树实现赫夫曼编码-Implement Huffman encoding. Typical algorithms using data structures, c language binary tree structure to achieve optimal Huffman coding
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:889
    • 提供者:林子牧
  1. HuffmanDecoding

    0下载:
  2. 利用二叉树数据结构实现对应的赫夫曼解码,运行良好。-Binary tree data structure using the corresponding Huffman decoding, run well.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:609
    • 提供者:林子牧
  1. hfm

    0下载:
  2. 哈夫曼树 用于寻找二叉树中寻找最短的路径问题-Huffman binary tree is used to find the shortest path problem to find
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1201
    • 提供者:雨轩
  1. 092203

    1下载:
  2. 实现对二叉树的一个指定的操作或用二叉树解决一应用问题 问题描述:对任意输入的一段英文,为每个字符编制其相应的赫夫曼编码;并利用该编码为任意输入的0、1序列进行解码. -Binary tree to achieve a specified operation or application of a binary tree to solve the problem descr iption: for any period of English input for the preparati
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1763
    • 提供者:ender
  1. dataStructure

    0下载:
  2. 用c++面向对象的方法写的一些数据结构小程序,适合初学者,有linelist,stack,queue,huffman编码,Tree···,和一个citylocation例子的应用-With c++ object-oriented way to write some small program data structures, suitable for beginners, there are linelist, stack, queue, huffman coding, Tree · · ·,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:689199
    • 提供者:jason
  1. hafuman

    0下载:
  2. 哈夫曼编码 首先输入整棵树 然后次程序实现哈夫曼编码的功能-Huffman first enter the tree and Huffman coding to achieve sub-program function
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-30
    • 文件大小:1723
    • 提供者:茂才
  1. MMS

    0下载:
  2. 给出输入文件content.txt,里面包含一段文字,编程实现哈弗曼编码方法,将输入文件编码后的结果输出到encode.txt;读入上面编码后的结果encode.txt,编程实现解码过程(需要编码时的哈夫曼树,存在tree.txt中),解码后的结果输出到decode.txt。 -Given input file content.txt, which contains some text, programming Hafu Man coding method, the input files
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:52320
    • 提供者:zeng jiabei
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com